home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Amiga Format CD 43
/
Amiga Format CD43 (1999)(Future Publishing)(GB)(Track 1 of 2)[!][issue 1999-09].iso
/
-serious-
/
comms
/
other
/
amicomsys
/
rexx
/
sendirc.amicomsys
< prev
next >
Wrap
Text File
|
1999-06-14
|
513b
|
26 lines
/* Send IRC-address to your IRC-client
Currently supported is AmIRC.
$VER: SendIRC.amicomsys 1.0 (24.1.1998) Håkan Parting
*/
parse arg server'/'channel
/*
if show('P','AMIRC.1') then
do
ADDRESS AMIRC.1 SAY "/SERVER "server
ADDRESS AMIRC.1 SAY "/JOIN "channel
Exit
end
*/
/* Set the path to your AmIRC-client under the Misc-page in AmiComSys settings.
*/
OPTIONS RESULTS;
ADDRESS AMICOMSYS GET stem info.;
ADDRESS COMMAND "c:run >NIL: "info.ircprgpath" Server="server" AutoJoin="channel" connect"
Exit